使用此函数,你可以删除 ini 文件的整个部分,这也将删除与其关联的所有键值对。
ini_section_delete(section);
参数 | 描述 |
---|---|
section | 要删除的节。 |
N/A(无返回值)
ini_open("savedata.ini");
ini_write_real("save1", "Score", score );
ini_section_delete("save1");
ini_close();
This example will open "savedata.ini" and write a value to "save1" > "Score". It will then delete the "save1" section and close the .ini file.